internal/runtime/maps.Map.globalDepth (field)

15 uses

	internal/runtime/maps (current package)
		map.go#L227: 	globalDepth uint8
		map.go#L315: 	m.globalDepth = uint8(sys.TrailingZeros64(dirSize))
		map.go#L316: 	m.globalShift = depthToShift(m.globalDepth)
		map.go#L322: 		directory[i] = newTable(mt, uint64(targetCapacity)/dirSize, i, m.globalDepth)
		map.go#L356: 	entries := 1 << (m.globalDepth - nt.localDepth)
		map.go#L364: 	if old.localDepth == m.globalDepth {
		map.go#L380: 		m.globalDepth++
		map.go#L392: 	entries := 1 << (m.globalDepth - left.localDepth)
		map.go#L643: 	m.globalDepth = 0
		map.go#L644: 	m.globalShift = depthToShift(m.globalDepth)
		table.go#L696: 	it.globalDepth = m.globalDepth
		table.go#L753: 	entries := 1 << (it.m.globalDepth - it.tab.localDepth)
		table.go#L878: 	if it.globalDepth != it.m.globalDepth {
		table.go#L908: 		orders := it.m.globalDepth - it.globalDepth
		table.go#L913: 		it.globalDepth = it.m.globalDepth